home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / thor / fse / quote.fse < prev    next >
Text File  |  1996-11-10  |  281b  |  21 lines

  1. /* qoute.fse - qoutes all except empty lines */
  2.  
  3. options results
  4. qoutechar = ">"
  5.  
  6. YPOS
  7. currline = result
  8. XPOS
  9. currcolumn = result
  10. MSGLENGTH
  11. lastline = result
  12.  
  13. do i=1 to lastline
  14.   SETPOS 1 i
  15.   GETLINE
  16.   if(result ~= " ") then INSERTINPUT qoutechar
  17. end
  18.  
  19. SETPOS currcolumn currline
  20.  
  21.